home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / LIBRARY / TOOLPAS2 / PULL.PAS < prev    next >
Pascal/Delphi Source File  |  1990-08-01  |  592b  |  35 lines

  1.  
  2. (*
  3.  * Copyright 1987, 1989 Samuel H. Smith;  All rights reserved
  4.  *
  5.  *)
  6.  
  7. {$D+}    {Global debug information}
  8. {$L+}    {Local debug information}
  9. {$R-}
  10.  
  11. unit PULL;
  12.  
  13. interface
  14.    uses DOS, CRT;
  15.  
  16.    {$i \tinc\getkey.int}
  17.    {$i \tinc\popup.int}
  18.    {$i \tinc\border.int}
  19.    {$i \tinc\fmtreal.int}
  20.    {$i \tinc\pull.int}
  21.    {$i \tinc\top.int}
  22.    {$i \tinc\toputil.int}
  23.  
  24. implementation
  25.    {$i \tinc\getkey.inc}
  26.    {$i \tinc\popup.inc}
  27.    {$i \tinc\border.inc}
  28.    {$i \tinc\fmtreal.inc}
  29.    {$i \tinc\pull.inc}
  30.    {$i \tinc\top.inc}
  31.    {$i \tinc\toputil.inc}
  32.  
  33. end.
  34.  
  35.